Skip to main content

Feed Items

Please refer to the Authentication document on how to obtain and use an API key.

Available actions & endpoints

Fetching all feed items

GET /v1/feed-items (Fetch all feed items for a business)
URL Parameters
nametypedata typedescription
NoneN/AN/AN/A
Query Parameters
namerequireddata typedescription
businessUuidYesstringThe uuid of the business you would like to fetch feed items for
websiteUuidYesstringThe uuid of the website you would like to fetch feed items for
Responses
http codecontent-typeresponse
200application/jsonSee example response
401application/json{"code":401,"message": "Authentication is required to continue"}
Example cURL
 curl -X GET -H "api-key: [YOUR API KEY]" https://api.monitor.insites.com/v1/feed-items?businessUuid=[THE businessUuid]&websiteUuid=[THE websiteUuid]
Example Response
{
"data": [
{
"uuid": "71e8ed9c-2294-464b-bab6-8a00cab77ece",
"reseller_uuid": "4be75552-663b-47d0-9ed6-cdbdf7092d77",
"name": "Default Plan",
"is_default": true,
"mobile_speed": true,
"broken_links": true,
"headings": true,
"spelling": true,
"mobile": true,
"sitemap": true,
"domain_age": true,
"ssl": true,
"downtime": true,
"backlinks": true,
"blog": true,
"target_keywords": true,
"keyword_opportunities": true,
"listings": true,
"reviews": true,
"created_at": "2023-06-14T14:02:20+00:00",
"updated_at": "2023-06-14T14:02:20+00:00"
},
{
"uuid": "b791936d-3901-4c6a-9f78-bb9a5bc22175",
"business_uuid": "25fce01c-2885-44b6-89a7-7bee8f25c89c",
"website_uuid": "7c351b86-5ecf-4be0-93af-012fa4a14be3",
"category": "listings",
"type": "listings_summary",
"status": "info",
"data": {
"directories_found_count": 0,
"missing_listing_details": false,
"directories_tested_count": 4,
"directories_inconsistent_count": 0
},
"created_at": "2023-01-13T10:00:21+00:00",
"updated_at": null,
"competitor_uuid": null
},
{
"uuid": "93b67193-1b98-410b-9c91-9685793db4c3",
"business_uuid": "25fce01c-2885-44b6-89a7-7bee8f25c89c",
"website_uuid": "7c351b86-5ecf-4be0-93af-012fa4a14be3",
"category": "website",
"type": "website_summary",
"status": "info",
"data": {
"ssl_valid": true,
"has_sitemap": true,
"ssl_enabled": true,
"ssl_expired": false,
"sitemap_issues": false,
"mobile_friendly": true,
"ssl_expiry_date": "2024-01-21T23:59:59+00:00",
"uptime_percentage": 100,
"bad_headings_count": 1,
"lighthouse_success": true,
"links_broken_count": 0,
"website_speed_performance": "good",
"spelling_error_count_total": 19
},
"created_at": "2023-01-13T09:00:12+00:00",
"updated_at": null,
"competitor_uuid": null
},
{
"uuid": "8c2965ea-4889-4112-91fc-ee28a96e3b79",
"business_uuid": "25fce01c-2885-44b6-89a7-7bee8f25c89c",
"website_uuid": "7c351b86-5ecf-4be0-93af-012fa4a14be3",
"category": "website",
"type": "broken_links",
"status": "success",
"data": {
"links_broken_count": 0,
"new_links_broken_count": 1
},
"created_at": "2023-01-13T04:13:32+00:00",
"updated_at": null,
"competitor_uuid": null
}
]
}